home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_52_go catalogue sub(+subSub)sections = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  943 b   |  33 lines

  1. on mouseEnter
  2.   set the cursor of sprite the currentSpriteNum to [the number of member "finger", the number of member "fingermask"]
  3. end
  4.  
  5. on mouseDown
  6.   sound stop 1
  7.   set spinList to ["subspin", "catspin"]
  8.   set the visible of sprite 7 to 0
  9.   repeat with z = 24 to 48
  10.     set the visible of sprite z to 0
  11.   end repeat
  12.   set CatalogueSubSectionList to ["a-log", "games", "books", "catVids"]
  13.   if the ink of sprite the currentSpriteNum = 5 then
  14.     repeat with x = 1 to 11
  15.       set the member of sprite 21 to getAt(spinList, the currentSpriteNum - 23) & string(x)
  16.       updateStage()
  17.       startTimer()
  18.       repeat while the timer < 1
  19.       end repeat
  20.     end repeat
  21.   end if
  22.   go(getAt(CatalogueSubSectionList, the currentSpriteNum - 23))
  23.   set the visible of sprite 7 to 1
  24.   repeat with z = 24 to 48
  25.     set the visible of sprite z to 1
  26.   end repeat
  27.   startTimer()
  28. end
  29.  
  30. on mouseLeave
  31.   set the cursor of sprite the currentSpriteNum to 0
  32. end
  33.